const github.com/klauspost/compress/flate.maxMatchLength
17 uses
github.com/klauspost/compress/flate (current package)
deflate.go#L39: maxMatchLength = 258 // The longest match for the compressor
deflate.go#L95: hashMatch [maxMatchLength + minMatchLength]uint32
deflate.go#L132: if s.index >= 2*windowSize-(minMatchLength+maxMatchLength) {
deflate.go#L272: minMatchLook := maxMatchLength
deflate.go#L426: if d.windowEnd-s.index < minMatchLength+maxMatchLength && !d.sync {
deflate.go#L448: if lookahead < minMatchLength+maxMatchLength {
deflate.go#L503: if prevLength < maxMatchLength-checkOff {
deflate.go#L507: if lookahead > maxMatchLength+checkOff {
deflate.go#L508: end = maxMatchLength + checkOff
deflate.go#L524: if prevLength >= maxMatchLength || d.window[prevIndex+i] != d.window[ch2+i] {
deflate.go#L565: if prevLength >= maxMatchLength || d.window[prevIndex+i] != d.window[ch2+i-1] {
fast_encoder.go#L152: s1 := int(s) + maxMatchLength - 4
level5.go#L189: } else if l == maxMatchLength {
level5.go#L501: } else if l == maxMatchLength {
level5.go#L680: s1 := int(s) + maxMatchLength - 4
level6.go#L211: } else if l == maxMatchLength {
token.go#L266: if xlength >= maxMatchLength+baseMatchLength {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |